From 521d21fe64d776470493fdd68938860effdb24f7 Mon Sep 17 00:00:00 2001 From: Ken Raeburn Date: Tue, 21 May 2002 21:35:41 +0000 Subject: [PATCH] * w32fns.c (enum_font_maybe_add_to_list): Use XCDR_AS_LVALUE for now, when the address is needed. --- src/w32fns.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/w32fns.c b/src/w32fns.c index a19aa953f37..6053e1d4ca3 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -7252,7 +7252,7 @@ enum_font_maybe_add_to_list (lpef, logfont, match_charset, width) if (NILP (Fmember (font_name, lpef->list))) { *lpef->tail = Fcons (Fcons (build_string (buf), width), Qnil); - lpef->tail = &(XCDR (*lpef->tail)); + lpef->tail = &(XCDR_AS_LVALUE (*lpef->tail)); lpef->numFonts++; } } -- 2.30.2